 /* ===================================================
   &#128313; Áß¾Ó ¹è³Ê ÀüÃ¼
=================================================== */
#center_banner {
  text-align: center;
  background: #0f3d2e;                /* ´ÙÅ©±×¸° */
  padding: 30px 0;
  font-family: 'Noto Sans KR', sans-serif !important;
}


/* ===================================================
   &#128313; °øÅë ÅØ½ºÆ®
=================================================== */
#center_banner p {
  margin: 0;
  font-weight: 900;
  line-height: 1.4;
}


/* ===================================================
   &#128313; 1ÁÙ (Å« ÅØ½ºÆ®)
=================================================== */
#center_banner .cb_line1 {
  font-size: clamp(28px, 3.5vw, 60px);


  /* ¾Ö´Ï¸ÞÀÌ¼Ç */
  animation: line1_show 2.8s infinite;
  animation-timing-function: ease-out; /* ºÎµå·¯¿î ³¡ Ã³¸® */
}


/* ===================================================
   &#128313; 2ÁÙ (¼­ºê ÅØ½ºÆ®)
=================================================== */
#center_banner .cb_line2 {
  font-size: clamp(22px, 3vw, 60px);
  margin-top: 8px;


  /* ¾Ö´Ï¸ÞÀÌ¼Ç */
  animation: line2_show 2.8s infinite;
  animation-timing-function: ease-out;
}


/* ===================================================
   &#128313; ±âº» ÅØ½ºÆ®
=================================================== */
#center_banner .cb_normal {
  color: #ffffff;
}


/* ===================================================
   &#128313; °­Á¶ »ö»ó
=================================================== */
#center_banner .cb_red {
  color: #ff3b3b;
}


#center_banner .cb_yellow {
  color: #ffe600;
}


#center_banner .cb_orange {
  color: #ff8c00;
}


/* ===================================================
   &#128313; 1ÁÙ ¾Ö´Ï¸ÞÀÌ¼Ç
   &#10004; ¾Æ·¡¿¡¼­ ÀÚ¿¬½º·´°Ô ¿Ã¶ó¿À¸ç µîÀå
=================================================== */
@keyframes line1_show {
  0% {
    opacity: 0;
    transform: translateY(12px);  /* ¾Æ·¡¿¡¼­ ½ÃÀÛ */
  }


  20% {
    opacity: 1;
    transform: translateY(0);     /* ÀÚ¿¬½º·´°Ô ¿Ã¶ó¿È */
  }


  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===================================================
   &#128313; 2ÁÙ ¾Ö´Ï¸ÞÀÌ¼Ç
   &#10004; 1ÁÙ ÀÌÈÄ µîÀå
=================================================== */
@keyframes line2_show {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }


  40% {
    opacity: 0;
    transform: translateY(12px);  /* ´ë±â */
  }


  65% {
    opacity: 1;
    transform: translateY(0);     /* µîÀå */
  }


  100% {
    opacity: 1;
    transform: translateY(0);
  }
}